home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Sep / di9809jp / BlastClient / About.pas < prev    next >
Pascal/Delphi Source File  |  1998-02-26  |  609b  |  38 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TfrmAbout = class(TForm)
  10.     Panel1: TPanel;
  11.     ProgramIcon: TImage;
  12.     ProductName: TLabel;
  13.     Version: TLabel;
  14.     Copyright: TLabel;
  15.     Comments: TLabel;
  16.     OKButton: TButton;
  17.     procedure OKButtonClick(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   frmAbout: TfrmAbout;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. procedure TfrmAbout.OKButtonClick(Sender: TObject);
  32. begin
  33.  Close;
  34. end;
  35.  
  36. end.
  37.  
  38.